From 3a0ba4480e5fcc3ea30363c346c4f080dc339014 Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Mon, 7 May 2007 20:49:55 +0000 Subject: [PATCH] (Flookup_key): Fix typo in last change. --- src/keymap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/keymap.c b/src/keymap.c index 145d872863a..dbcf1d6fcfd 100644 --- a/src/keymap.c +++ b/src/keymap.c @@ -1313,7 +1313,7 @@ recognize the default bindings, just as `read-key-sequence' does. */) c = Fevent_convert_list (c); /* Turn the 8th bit of string chars into a meta modifier. */ - if (STRINGP (key) && XINT (c) & 0x8 && !STRING_MULTIBYTE (key)) + if (STRINGP (key) && XINT (c) & 0x80 && !STRING_MULTIBYTE (key)) XSETINT (c, (XINT (c) | meta_modifier) & ~0x80); /* Allow string since binding for `menu-bar-select-buffer' -- 2.30.2